home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter
- cursor([cast "curs", cast "mask"])
- puppetSprite(the currentSpriteNum, 1)
- set the blend of sprite the currentSpriteNum to 50
- end
-
- on mouseLeave
- cursor(-1)
- set the blend of sprite the currentSpriteNum to 100
- end
-
- on mouseUp
- global fotoActual, modo
- cursor(-1)
- set the blend of sprite the currentSpriteNum to 100
- case the clickOn of
- 3:
- set modo to "manual"
- if the type of cast (fotoActual + 1) of castLib "fotos" = #empty then
- set fotoActual to 1
- else
- set fotoActual to fotoActual + 1
- end if
- 4:
- set modo to "manual"
- if fotoActual = 1 then
- set fotoActual to the number of castMembers of castLib "fotos"
- else
- set fotoActual to fotoActual - 1
- end if
- 5:
- set modo to "manual"
- set fotoActual to 1
- 6:
- set modo to "auto"
- 7:
- go(1, "video")
- puppetSound(0)
- 9:
- go(1, "success")
- puppetSound(0)
- end case
- end
-